Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 424 Bytes

2018-12-27-클래스, 객체와 인스턴스.markdown

File metadata and controls

14 lines (12 loc) · 424 Bytes
layout title date categories comments
post
클래스, 객체와 인스턴스
2018-12-27 15:30:00 -0800
Java
true
  1. 클래스 : 구현할 대상의 설계도
  2. 객체 : 구현할 대상
  3. 인스턴스 : 구현된 실체
  • 객체에 해당하는 인스턴스의 메모리를 힙 영역에 할당하고 객체 레퍼런스는 이 힙 영역의 메모리를 가리킨다.
  • 이를 인스턴스화라고 한다.